home *** CD-ROM | disk | FTP | other *** search
- /*
- File: MailBuffer.h
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #ifndef __MAILBUFFER__
- #define __MAILBUFFER__
-
- #ifndef __BLJSTANDARDINCLUDES__
- #include "BLJStandardIncludes.h"
- #endif
-
- MailBuffer SetupMailBuffer ( void * bufferP, unsigned long bufferSize, unsigned long dataSize = 0);
-
- MailBuffer AllocateMailBuffer(long dataSize, void* where = nil, long dataSize = 0);
- MailBuffer AllocateMailBuffer(Ptr where); // gets bufferSize from GetPtrSize(where), dataSize = 0
-
- void DisposeMailBuffer(MailBuffer& buffer);
-
- #endif
-